home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
352_01
/
lcbelow.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1991-04-22
|
395b
|
17 lines
// LCBELOW.CPP -
// contains LinkClass::insertBelow()
// routine for inserting a new node below the 'this' node.
#include <stdlib.h>
#include <alloc.h>
#include <iostream.h>
#include "wtwg.h"
#include "dblib.h"
void LinkClass::insertBelow ( LinkClass &existing )
{
pv = existing.pv;
nx = &existing;
pv->nx = this;
nx->pv = this;
}; // end LinkClass::insertBelow()